home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-06-16 | 470 b | 16 lines | [TEXT/ToyS] |
- tell application "Cirrus D-2.0"
- activate
- set unit to inch
- copy size of scanner 1 to fullSize
- (* delete all existing frames except for the PreScan *)
- repeat while (number of frame in scanner 1) > 1
- delete frame 2 of scanner 1
- end repeat
- (* setup PreScan attributes and scan it *)
- tell frame "Prescan" of scanner 1
- set mode to grayscale
- set resolution to 0.0 -- is automatically corrected to the minimum value
- set size to fullSize
- scan
- end tell
- end tell